-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 KB
/
package.json
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
{
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "webpack -w",
"deploy": "NODE_ENV=production yarn build && now --prod",
"lint": "eslint ./app/scripts/**/*",
"lint:fix": "eslint ./app/scripts/**/* --fix",
"type-check": "tsc",
"preinstall": "typesync | :"
},
"dependencies": {
"core-js": "3.6.5",
"p5": "~1.0.0",
"pixi.js": "~5.2.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/babel__core": "^7.1.8",
"@types/babel__preset-env": "^7.9.0",
"@types/core-js": "2.5.3",
"@types/eslint": "^7.2.0",
"@types/p5": "~0.9.0",
"@types/webpack": "^4.41.17",
"babel-loader": "^8.0.6",
"eslint": "^7.2.0",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"typesync": "^0.7.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}