-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "feconf2018",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"classcat": "^3.2.3",
"core-js": "^2.5.7",
"express": "^4.16.3",
"intersection-observer": "^0.5.0",
"left-pad": "^1.3.0",
"next": "^7.0.1",
"raf": "^3.4.0",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/next": "^7.0.0",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"autoprefixer": "^9.1.5",
"next-compose-plugins": "^2.1.1",
"node-sass": "^4.9.3",
"prettier": "^1.14.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.1"
},
"scripts": {
"lint:pt": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts*\"",
"lint:ts": "tslint -p tsconfig.json src/**/*.ts{,x}",
"lint": "yarn lint:pt && yarn lint:ts --fix",
"dev": "ts-node -P ./tsconfig.json server.ts",
"build": "NODE_ENV=production next build src",
"export": "next export src -o out"
}
}