-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
39
40
41
42
43
44
45
46
47
48
{
"name": "checkered-board-games",
"version": "0.1.0",
"private": true,
"scripts": {
"build-prod": "tsc && npm test && webpack --mode=production",
"build": "tsc && npm test && webpack --mode=development",
"test": "mocha built/tests/**/*.test.js"
},
"description": "CheckeredBoardGames",
"author": {
"name": "Daniel Bouchard"
},
"dependencies": {
"inversify": "^5.0.1",
"jquery": "^3.5.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/chai": "^4.2.12",
"@types/expect": "^24.3.0",
"@types/jquery": "^3.5.1",
"@types/mocha": "^8.0.3",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^6.2.0",
"mocha": "^8.1.3",
"three": "^0.120.1",
"ts-loader": "^8.0.4",
"ts-mocha": "^7.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7",
"uuid": "^8.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}